projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fb644f4
)
(awk-mode): Set parse-sexp-ignore-comments.
author
Richard M. Stallman
<rms@gnu.org>
Thu, 22 May 1997 00:40:45 +0000
(
00:40
+0000)
committer
Richard M. Stallman
<rms@gnu.org>
Thu, 22 May 1997 00:40:45 +0000
(
00:40
+0000)
lisp/progmodes/awk-mode.el
patch
|
blob
|
history
diff --git
a/lisp/progmodes/awk-mode.el
b/lisp/progmodes/awk-mode.el
index 3ba782bac38a641a34e466ad8a7eec9699679451..d214baff7e5b84b8b4c97875a2fa3bd1cb30a9b9 100644
(file)
--- a/
lisp/progmodes/awk-mode.el
+++ b/
lisp/progmodes/awk-mode.el
@@
-144,6
+144,8
@@
with no args, if that value is non-nil."
(setq comment-start-skip "#+ *")
(make-local-variable 'comment-indent-function)
(setq comment-indent-function 'c-comment-indent)
+ (make-local-variable 'parse-sexp-ignore-comments)
+ (setq parse-sexp-ignore-comments t)
(make-local-variable 'font-lock-defaults)
(setq font-lock-defaults '(awk-font-lock-keywords nil nil ((?_ . "w"))))
(run-hooks 'awk-mode-hook))